The Storage Kit Table of Contents | The Storage Kit Index |
Derived from: none
Declared in: be/storage/Resources.h
Library: libbe.so
|
The data that a file contains is either "flat," or it's "structured." To read a flat file, you simply open it (through a BFile object) and start Read()'ing. Structured data requires that you understand the structure. Typically, an application understands the structure either because it's a well-known format, or because the application itself wrote the file in the first place.
The BResources class defines a simple design for storing structured data. The structure is a series of "resources," where each resource is key/value pair. A single "resource file" can hold an unlimited number of resources; a single resource within a resource file can contain an unlimited amount of data.
Resources are sort of like attributes in that they store chunks of data that are looked up through the use of a key. But note these differences:
The BResources class provides the means for reading and writing a file's resources, but it doesn't let you access the file directly. Instead, you must initialize the BResources object by passing it a valid BFile object, either in the constructor or the SetTo() function. Note the following:
You can't use just any old file as a BResources initializer: The file must be an actual resource file. Simply initializing a BResources object with an existing non-resource file will not transform the file into a resource file—unless you tell the initializer to clobber the existing file.
For example, this initialization fails:
/* "fido" exists, but isn>t a resource file. */ BFile file("/boot/home/fido", B_READ_WRITE); BResources res; status_t err; if ((err = res.SetTo(&file)) != B_OK) ...
And this one succeeds...
/* The second arg to SetTo() is the "clobber?" flag. */ if ((err = res.SetTo(&file, true)) != B_OK) ...
...but at a price: fido's existing data is destroyed (truncated to 0 bytes), and a new "resource header" is written to the file. Having gained a resource header, fido can thereafter be used to initialize a BResources object.
Clobber-setting a resource file is possible, but, as mentioned at the top of this class description, you'll probably never create resource files directly yourself
So where do resource files come from if you don't create them yourself? Step right up...
The only files that are naturally resource-ful are application executables. For example, here we initialize a BResources object with the IconWorld executable:
BPath path; BFile file; BResources res; find_directory(B_APPS_DIRECTORY, &path); path.Append("IconWorld"); file.SetTo(&path, B_READ_ONLY); if (res.SetTo(&file) != B_OK) ...
The BResources object is now primed to look at IconWorld's resources. But be aware that an application's "app-like" resources (its icons, signature, app flags) should be accessed through the BAppFileInfo class.
After you've initialized your BResources object, you use the FiddleResource() functions to examine and manipulate the file's resources:
As mentioned earlier, the BFile that you use to initialize a BResources object must be open for reading. If you also want to modify the resources (by adding, removing, or writing) the BFile must also be open for writing.
A single resource within a resource file is tagged with a data type, an ID, and a name:
Taken singly, none of these tags needs to be unique: Any number of resources (within the same file) can have the same data type, ID, or name. It's the combination of the data type constant and the ID that uniquely identifies a resource within a file. The name, on the other hand, is more of a convenience; it never needs to be unique when combined with the data type or with the ID.
Some functions also provide the option to use a pointer to a resource's data to identify the resource; once a resource has been loaded into memory by calling LoadResource(), you can use the resulting pointer to identify it.
All resource data is assumed to be "raw": If you want to store a NULL-terminated string in a resource, for example, you have to write the NULL as part of the string data, or the application that reads the resource from the resource must apply the NULL itself. Put more generally, the data in a resource doesn't assume any particular structure or format, it's simply a vector of bytes.
Resource data that you retrieve from a BResources object belongs to the BResources object. You mustn't free() these pointers.
Individual changes that you make to the resource file are cached in memory until you call the Sync() function. Other applications won't see the changes until then.
Just because a file is a resource file, that doesn't mean that you're prevented from reading and writing it as a plain file (through the BFile object). For example, it's possible to create a resource file, add some resources to it, and then use a BFile object to seek to the end of the file and write some flat data. But you have to keep track of the "data map" yourself—if you go back and add more resources to the file (or extend the size of the existing ones), your flat data will be overwritten: The BResources object doesn't preserve non-resource data that lives in the file that it's operating on.
|
Creates a new BResources object. You can initialize the object by passing a pointer to a valid BFile; without the argument, the object won't refer to a file until SetTo() is called.
If clobber is true, the file that's referred to by BFile is truncated (it's data is erased), and a new resource file header is written to the file. If clobber is false and the file doesn't otherwise doesn't have a resource header, the initialization fails.
BResources copies the BFile argument; after the constructor returns, you can, for example, delete the BFile that you passed in.
|
Destroys the BResources object.
|
Adds a new resource to the file. For this function to have an effect, the file must be open for writing. The arguments are:
Ownership of the data pointer isn't assigned to the BResources object by this function; after AddResource() returns, your application can free or otherwise manipulate the buffer that data points to without affecting the data that was written to the file.
RETURN CODES
|
Returns the BFile the BResource object references.
|
These functions return information about a specific resource, as identified by the first one or two arguments:
The other arguments return the other statistics about the resource (if found).
The pointer that's returned in *foundName belongs to the BResources. Don't free it.
The functions return true if a resource was found, and false otherwise.
|
Returns true if the resource file contains a resource as identified by the arguments, otherwise it returns false.
Keep in mind that there may be more than one resource in the file with the same name and type combination. The type and id combo, on the other hand, is unique. See "Identifying a Resource within a Resource File."
|
Loads the specified resource into memory. The resource can be identified by either type code and ID or by type code and name. See "Identifying a Resource within a Resource File."
The returned pointer belongs to the resource file; it's valid until the resource gets changed. If an error occurs while trying to load the resource, NULL is returned.
|
Copies all the resource from the file specified by fromFile into the file targeted by the BResources object. The original file isn't changed. You can do this to a file that's opened read-only, but the changes won't have any effect.
RETURN CODES
B_OK. The resources were copied without error.
|
If you know you're going to need to access all resources of a particular type, you can preload them all into memory in one shot using this function. If you specify a type of 0, all resources of all types are preloaded.
RETURN CODES
B_OK. The resources were preloaded without error.
|
Removes the resource identified by the arguments. See "Identifying a Resource within a Resource File."
RETURN CODES
|
Unlocks and closes the object's previous BFile, and re-initializes it to refer to a copy of the argument. If the new BFile is open for writing, the BResources' copy of the BFile is locked.
If clobber is true, the file that's referred to by BFile is truncated (it's data is erased), and a new resource file header is written to the file. If clobber is false and the file doesn't otherwise doesn't have a resource header, the initialization fails.
RETURN CODES
|
Updates all changed resources on disk. This actually rewrites the entire resource file, so be aware of this when designing your code. This is a very good reason not to use BResources for anything other than permanent, nonchanging application data, and only developer tools should write to resource files.
RETURN CODES
B_OK. The resources were updated without error.
|
Writes all the file's resources into a new file. After this function returns, the BResources object is targeted on the new BFile; all future operations will be done in the new file.
RETURN CODES
B_OK. The resources were written without error.
The Storage Kit Table of Contents | The Storage Kit Index |
Copyright © 2000 Be, Inc. All rights reserved..